Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
axios-retry
Advanced tools
Axios plugin that intercepts failed requests and retries them whenever posible.
The axios-retry npm package is a utility that allows you to automatically retry failed HTTP requests made using the Axios library. It is particularly useful for dealing with transient errors or unstable network conditions. It provides several options to customize the retry behavior, such as the number of retries, retry delay, and the conditions for which requests should be retried.
Automatic Retries
Automatically retries a failed HTTP request up to a specified number of times.
const axios = require('axios');
const axiosRetry = require('axios-retry');
axiosRetry(axios, { retries: 3 });
axios.get('https://example.com').catch(error => {
console.error('Request failed:', error);
});
Custom Retry Conditions
Allows you to specify custom conditions for when a request should be retried, such as on certain HTTP status codes or network errors.
const axios = require('axios');
const axiosRetry = require('axios-retry');
axiosRetry(axios, {
retryCondition: (error) => {
// Retry on any network error, or 5xx status codes
return axiosRetry.isNetworkOrIdempotentRequestError(error) || error.response.status === 503;
}
});
Exponential Backoff
Implements an exponential backoff strategy for the delay between retries, which can help to avoid overwhelming the server.
const axios = require('axios');
const axiosRetry = require('axios-retry');
axiosRetry(axios, {
retries: 5,
retryDelay: (retryCount) => {
return axiosRetry.exponentialDelay(retryCount);
}
});
Retry on Idempotent Requests Only
Configures the retry mechanism to only retry idempotent requests, which are requests that can be repeated without causing additional side effects.
const axios = require('axios');
const axiosRetry = require('axios-retry');
axiosRetry(axios, {
retries: 3,
shouldResetTimeout: true,
retryCondition: axiosRetry.isIdempotentRequestError
});
retry-axios is an npm package that provides similar functionality to axios-retry. It allows you to attach retry functionality to Axios requests and configure the number of retries, backoff strategy, and more. It differs in its API and configuration options, offering a different approach to attaching retry behavior to Axios instances or requests.
superagent-retry-delay is an npm package that extends the Superagent HTTP request library with retry functionality. While it serves a similar purpose to axios-retry, it is specific to Superagent rather than Axios. It allows for configuring retries and delays but is not directly compatible with Axios.
Axios plugin that intercepts failed requests and retries them whenever possible.
npm install axios-retry
// CommonJS
// const axiosRetry = require('axios-retry');
// ES6
import axiosRetry from 'axios-retry';
axiosRetry(axios, { retries: 3 });
axios.get('http://example.com/test') // The first request fails and the second returns 'ok'
.then(result => {
result.data; // 'ok'
});
// Exponential back-off retry delay between requests
axiosRetry(axios, { retryDelay: axiosRetry.exponentialDelay });
// Custom retry delay
axiosRetry(axios, { retryDelay: (retryCount) => {
return retryCount * 1000;
}});
// Works with custom axios instances
const client = axios.create({ baseURL: 'http://example.com' });
axiosRetry(client, { retries: 3 });
client.get('/test') // The first request fails and the second returns 'ok'
.then(result => {
result.data; // 'ok'
});
// Allows request-specific configuration
client
.get('/test', {
'axios-retry': {
retries: 0
}
})
.catch(error => { // The first request fails
error !== undefined
});
Note: Unless shouldResetTimeout
is set, the plugin interprets the request timeout as a global value, so it is not used for each retry but for the whole request lifecycle.
Name | Type | Default | Description |
---|---|---|---|
retries | Number | 3 | The number of times to retry before failing. 1 = One retry after first failure |
retryCondition | Function | isNetworkOrIdempotentRequestError | A callback to further control if a request should be retried. By default, it retries if it is a network error or a 5xx error on an idempotent request (GET, HEAD, OPTIONS, PUT or DELETE). |
shouldResetTimeout | Boolean | false | Defines if the timeout should be reset between retries |
retryDelay | Function | function noDelay() { return 0; } | A callback to further control the delay in milliseconds between retried requests. By default there is no delay between retries. Another option is exponentialDelay (Exponential Backoff). The function is passed retryCount and error . |
onRetry | Function | function onRetry(retryCount, error, requestConfig) { return; } | A callback to notify when a retry is about to occur. Useful for tracing and you can any async process for example refresh a token on 401. By default nothing will occur. The function is passed retryCount , error , and requestConfig . |
Clone the repository and execute:
npm test
git clone https://github.com/softonic/axios-retry.git
git checkout -b feature/my-new-feature
git commit -am 'Added some feature'
npm run build
git push origin my-new-feature
[3.9.1] - 2023-11-16
FAQs
Axios plugin that intercepts failed requests and retries them whenever posible.
The npm package axios-retry receives a total of 1,339,529 weekly downloads. As such, axios-retry popularity was classified as popular.
We found that axios-retry demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.